SetScriptSourceResponse

data class SetScriptSourceResponse(callFrames: List<CallFrame>?, stackChanged: Boolean?, asyncStackTrace: StackTrace?, asyncStackTraceId: StackTraceId?, exceptionDetails: ExceptionDetails?)

Represents response frame that is returned from Debugger#setScriptSource operation call. Edits JavaScript source live.

See also

Constructors

SetScriptSourceResponse
Link copied to clipboard
fun SetScriptSourceResponse(callFrames: List<CallFrame>? = null, stackChanged: Boolean? = null, asyncStackTrace: StackTrace? = null, asyncStackTraceId: StackTraceId? = null, exceptionDetails: ExceptionDetails? = null)

Properties

asyncStackTrace
Link copied to clipboard
val asyncStackTrace: StackTrace? = null
Async stack trace, if any.
asyncStackTraceId
Link copied to clipboard
val asyncStackTraceId: StackTraceId? = null
Async stack trace, if any.
callFrames
Link copied to clipboard
val callFrames: List<CallFrame>? = null
New stack trace in case editing has happened while VM was stopped.
exceptionDetails
Link copied to clipboard
val exceptionDetails: ExceptionDetails? = null
Exception details if any.
stackChanged
Link copied to clipboard
val stackChanged: Boolean? = null
Whether current call stack was modified after applying the changes.

Sources

jvm source
Link copied to clipboard